GoApiTutorial icon indicating copy to clipboard operation
GoApiTutorial copied to clipboard

Add syntax coloring for code blocks in the README

Open mh-cbon opened this issue 6 years ago • 2 comments

mh-cbon avatar Mar 28 '19 09:03 mh-cbon

Coverage Status

Coverage remained the same at 67.081% when pulling 088c6c0e86a3ce169a02e016c3e65da6c8d3ec3e on mh-cbon:patch-1 into 2b3959605b2a87d732ecb00da7779b86362c614f on kelvins:master.

coveralls avatar Mar 28 '19 11:03 coveralls

Hello @mh-cbon, thanks a lot for your contribution to the project.

Can you please just fix the indentation?

For example:

    CREATE DATABASE rest_api_example;
    USE rest_api_example;
    CREATE TABLE users (
        id INT AUTO_INCREMENT PRIMARY KEY,
        name VARCHAR(50) NOT NULL,
        age INT NOT NULL
    );

to

CREATE DATABASE rest_api_example;
USE rest_api_example;
CREATE TABLE users (
    id INT AUTO_INCREMENT PRIMARY KEY,
    name VARCHAR(50) NOT NULL,
    age INT NOT NULL
);

kelvins avatar Mar 29 '19 00:03 kelvins