(PDOC-14) Fix strings to work with future parser
Prior to this commit, two require statements were in the wrong order, causing strings to fail when running against anything that required the future parser. Now, those requires have been flipped and strings can run with `--parser future` successfully.
This commit is contained in:
parent
96bb8c9219
commit
9d53a8091a
|
@ -1,6 +1,6 @@
|
||||||
require 'puppet'
|
require 'puppet'
|
||||||
require 'puppetx'
|
|
||||||
require 'puppet/pops'
|
require 'puppet/pops'
|
||||||
|
require 'puppetx'
|
||||||
require 'puppet/util/docs'
|
require 'puppet/util/docs'
|
||||||
require 'yard'
|
require 'yard'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue