summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Schatz <jschatz1@gmail.com>2017-08-09 16:40:23 -0400
committerJacob Schatz <jschatz1@gmail.com>2017-08-09 16:40:23 -0400
commit7a8a8ec12335419c6d423b852ce92c1ed7759166 (patch)
tree00de172ccd91f0a695b2b4ffbd5b55e2a1803c0f
parent7896ffde7840aa8be5637e44f54488dcabcf1d3c (diff)
downloadgitlab-ce-7a8a8ec12335419c6d423b852ce92c1ed7759166.tar.gz
Fix typo.
-rw-r--r--doc/development/fe_guide/style_guide_js.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/fe_guide/style_guide_js.md b/doc/development/fe_guide/style_guide_js.md
index 32224e6ff48..6a660ff1788 100644
--- a/doc/development/fe_guide/style_guide_js.md
+++ b/doc/development/fe_guide/style_guide_js.md
@@ -514,7 +514,7 @@ A forEach will cause side effects, it will be mutating the array being iterated.
### The Javascript/Vue Accord
The goal of this accord is to make sure we are all on the same page.
-1. When writing Vue, you may not use jQuery in your application. You may query the DOM 1 time while bootstrapping your application to grab data attributes using `dataset`. Using jQuery with Vue can be useful, however it is impossible to come up with a specific rule of proper usage within Vue, and can always .
+1. When writing Vue, you may not use jQuery in your application. You may query the DOM 1 time while bootstrapping your application to grab data attributes using `dataset`. Using jQuery with Vue can be useful, however it is impossible to come up with a specific rule of proper usage within Vue.
1. You may have a temporary but immediate need to create technical debt by writing code that does not follow our standards, to be refactored later. You may do this as long as:
1. The technical debt is handled in the next release by you.