Skip to content

Commit

Permalink
Fix a docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Oct 4, 2016
1 parent 2c83eed commit 32caf86
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions projectile.el
Original file line number Diff line number Diff line change
Expand Up @@ -224,13 +224,13 @@ Otherwise consider the current directory the project root."
"The tag backend that Projectile should use.
If set to 'auto', `projectile-find-tag' will automatically choose
which backend to use. Preference order is ggtags -> etags-select
-> find-tag. Variable can also be set to specify which backend to
use. If selected backend is unavailable, fall back to `find-tag'.
which backend to use. Preference order is ggtags -> etags-select
-> `find-tag'. Variable can also be set to specify which backend to
use. If selected backend is unavailable, fall back to `find-tag'.
If this variable is set to 'auto' and ggtags is available, or if
set to 'ggtags', then ggtags will be used for
`projectile-regenerate-tags'. For all other settings
`projectile-regenerate-tags'. For all other settings
`projectile-tags-command' will be used."
:group 'projectile
:type '(radio
Expand Down Expand Up @@ -2846,8 +2846,8 @@ Invokes the command referenced by `projectile-switch-project-action' on switch.
With a prefix ARG invokes `projectile-commander' instead of
`projectile-switch-project-action.'"
(let ((switch-project-action (if arg
'projectile-commander
projectile-switch-project-action)))
'projectile-commander
projectile-switch-project-action)))
(run-hooks 'projectile-before-switch-project-hook)
;; use a temporary buffer to load PROJECT-TO-SWITCH's dir-locals before calling SWITCH-PROJECT-ACTION
(with-temp-buffer
Expand Down

0 comments on commit 32caf86

Please sign in to comment.