From 88cbab6b0675cd9986022c273116b1dc1fe343aa Mon Sep 17 00:00:00 2001 From: Christopher Fremond Date: Mon, 6 May 2019 15:18:19 +0100 Subject: [PATCH] formatting --- subjects/brackets.en.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/subjects/brackets.en.md b/subjects/brackets.en.md index 9d4f9fc76..87822e10d 100644 --- a/subjects/brackets.en.md +++ b/subjects/brackets.en.md @@ -7,16 +7,16 @@ argument, the program prints on the standard output "OK" followed by a newline if the expression is correctly bracketed, otherwise it prints "Error" followed by a newline. -Symbols considered as 'brackets' are brackets '(' and ')', square brackets '[' -and ']'and braces '{' and '}'. Every other symbols are simply ignored. +Symbols considered as `brackets` are brackets `(` and `)`, square brackets `[` +and `]`and braces `{` and `}`. Every other symbols are simply ignored. An opening bracket must always be closed by the good closing bracket in the -correct order. A string which not contains any bracket is considered as a +correct order. A string which do not contains any bracket is considered as a correctly bracketed string. If there is no arguments, the program must print only a newline. -And its output : +Examples of outputs : ```console student@ubuntu:~/student/test$ go build