Skip to content

Instantly share code, notes, and snippets.

@dalen
Created August 27, 2013 23:09
Show Gist options
  • Save dalen/6360222 to your computer and use it in GitHub Desktop.
Save dalen/6360222 to your computer and use it in GitHub Desktop.
# rather this:
# Sets up NTP client
class ntp (
$server # Server address
) {
...
}
#than this:
# Class: ntp
# Sets up NTP client
# Parameters
# server - Server address
class ntp (
$server
) {
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment