Trivial doc fixes in coding-guidelines

Updated grammar in library symlink guidance per notes in lp#1878426

Change-Id: I2b952283ab6efacf0c7f890342b2eb3959d35a45
Closes-Bug: 1878426
This commit is contained in:
Drew Freiberger 2020-05-13 09:21:56 -05:00
parent f12fdb9db1
commit 582267c4fc
1 changed files with 2 additions and 2 deletions

View File

@ -33,10 +33,10 @@ problems with testing as *depending on the load time ordering* it might not be
clear which particular module path you're trying to mock out and which one is
first in the module path map.
So only every have ONE root for your python code in a charm. e.g. put it in
So only ever have ONE root for your python code in a charm. e.g. put it in
``/lib`` and add that to path by ``sys.path.append('lib').``
Incidentally, if you **are** mocking out code in charmhelpers in you charms,
Incidentally, if you **are** mocking out code in charmhelpers in your charms,
**it's probably not a good idea**. Only mock code in the target object file,
rather than an included module.