jsdoc/test/fixtures/this-and-objectlit.js
Jeff Williams 48e6c392d5 huge whitespace cleanup
- remove all trailing whitespace
- for consistency, replace all tabs with spaces
2014-03-03 07:43:01 -08:00

12 lines
196 B
JavaScript

/** @constructor */
function Page(title) {
this.parts = {
title: title,
body: {
/** document me */
heading: '',
main: ''
}
};
}