aboutsummaryrefslogtreecommitdiff
path: root/files/fr/learn/tools_and_testing/client-side_javascript_frameworks
diff options
context:
space:
mode:
authorSphinxKnight <SphinxKnight@users.noreply.github.com>2022-01-03 20:02:03 +0100
committerGitHub <noreply@github.com>2022-01-03 20:02:03 +0100
commit5619eb75de9672cde9a22d13ef49815ebd6f8164 (patch)
tree0db26a30bd9839ccb06afb267595f7946d84ef08 /files/fr/learn/tools_and_testing/client-side_javascript_frameworks
parentb28c6063d1f1a232760e10feae803f83bac0131c (diff)
downloadtranslated-content-5619eb75de9672cde9a22d13ef49815ebd6f8164.tar.gz
translated-content-5619eb75de9672cde9a22d13ef49815ebd6f8164.tar.bz2
translated-content-5619eb75de9672cde9a22d13ef49815ebd6f8164.zip
Fix notes and warnings cards where a space was missing (#3282)
Diffstat (limited to 'files/fr/learn/tools_and_testing/client-side_javascript_frameworks')
-rw-r--r--files/fr/learn/tools_and_testing/client-side_javascript_frameworks/introduction/index.md2
-rw-r--r--files/fr/learn/tools_and_testing/client-side_javascript_frameworks/react_getting_started/index.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/files/fr/learn/tools_and_testing/client-side_javascript_frameworks/introduction/index.md b/files/fr/learn/tools_and_testing/client-side_javascript_frameworks/introduction/index.md
index 711019d139..70b4132d25 100644
--- a/files/fr/learn/tools_and_testing/client-side_javascript_frameworks/introduction/index.md
+++ b/files/fr/learn/tools_and_testing/client-side_javascript_frameworks/introduction/index.md
@@ -263,7 +263,7 @@ You should seriously consider the support matrix and DSLs of a framework when ma
| Vue | IE9+ | HTML-based | HTML-based, JSX, Pug |
| Ember | Modern (IE9+ in Ember version 2.18) | Handlebars | Handlebars, TypeScript |
-> **Note :**: DSLs we've described as "HTML-based" do not have official names. They are not really true DSLs, but they are non-standard HTML, so we believe they are worth highlighting.
+> **Note :** DSLs we've described as "HTML-based" do not have official names. They are not really true DSLs, but they are non-standard HTML, so we believe they are worth highlighting.
Citations for this table:
diff --git a/files/fr/learn/tools_and_testing/client-side_javascript_frameworks/react_getting_started/index.md b/files/fr/learn/tools_and_testing/client-side_javascript_frameworks/react_getting_started/index.md
index d658e99886..46ee16870a 100644
--- a/files/fr/learn/tools_and_testing/client-side_javascript_frameworks/react_getting_started/index.md
+++ b/files/fr/learn/tools_and_testing/client-side_javascript_frameworks/react_getting_started/index.md
@@ -330,7 +330,7 @@ Line 7 calls React’s `ReactDOM.render()` function with two arguments:
All of this tells React that we want to render our React application with the `App` component as the root, or first component.
-> **Note :**: In JSX, React components and HTML elements must have closing slashes. Writing just `<App>` or just `<img>` will cause an error.
+> **Note :** In JSX, React components and HTML elements must have closing slashes. Writing just `<App>` or just `<img>` will cause an error.
[Service workers](/fr/docs/Web/API/Service_Worker_API/Using_Service_Workers) are interesting pieces of code that help application performance and allow features of your web applications to work offline, but they’re not in scope for this article. You can delete line 5, as well as lines 9 through 12.