From a5b750703f97c8054b23c1c5759218f530d2fb74 Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Tue, 19 Aug 2014 13:59:33 -0700 Subject: [PATCH] Comment update --- python/ycm/youcompleteme.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/ycm/youcompleteme.py b/python/ycm/youcompleteme.py index a64c2ba5..e9fc72a3 100644 --- a/python/ycm/youcompleteme.py +++ b/python/ycm/youcompleteme.py @@ -281,9 +281,9 @@ class YouCompleteMe( object ): if self.DiagnosticsForCurrentFileReady(): diagnostics = self._latest_file_parse_request.Response() # We set the diagnostics request to None because we want to prevent - # Syntastic from repeatedly refreshing the buffer with the same diags. - # Setting this to None makes DiagnosticsForCurrentFileReady return False - # until the next request is created. + # repeated refreshing of the buffer with the same diags. Setting this to + # None makes DiagnosticsForCurrentFileReady return False until the next + # request is created. self._latest_file_parse_request = None if qflist_format: return vimsupport.ConvertDiagnosticsToQfList( diagnostics )