Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

Commit

Permalink
fix copyright comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Newson committed Feb 19, 2011
1 parent 6ea65dd commit acef7cb
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 17 deletions.
18 changes: 13 additions & 5 deletions src/monic.erl
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
%% @author author <author@example.com>
%% @copyright YYYY author.

%% @doc monic startup code
% Copyright 2011 Cloudant
%
% Licensed under the Apache License, Version 2.0 (the "License"); you may not
% use this file except in compliance with the License. You may obtain a copy of
% the License at
%
% http://www.apache.org/licenses/LICENSE-2.0
%
% Unless required by applicable law or agreed to in writing, software
% distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
% WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
% License for the specific language governing permissions and limitations under
% the License.

-module(monic).
-author('author <author@example.com>').
-export([start/0, start_link/0, stop/0]).

ensure_started(App) ->
Expand Down
18 changes: 13 additions & 5 deletions src/monic_app.erl
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
%% @author author <author@example.com>
%% @copyright YYYY author.

%% @doc Callbacks for the monic application.
% Copyright 2011 Cloudant
%
% Licensed under the Apache License, Version 2.0 (the "License"); you may not
% use this file except in compliance with the License. You may obtain a copy of
% the License at
%
% http://www.apache.org/licenses/LICENSE-2.0
%
% Unless required by applicable law or agreed to in writing, software
% distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
% WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
% License for the specific language governing permissions and limitations under
% the License.

-module(monic_app).
-author('author <author@example.com>').

-behaviour(application).
-export([start/2,stop/1]).
Expand Down
16 changes: 13 additions & 3 deletions src/monic_file_manager.erl
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
%% @author author <author@example.com>
%% @copyright YYYY author.
%% @doc Create and delete monic files.
% Copyright 2011 Cloudant
%
% Licensed under the Apache License, Version 2.0 (the "License"); you may not
% use this file except in compliance with the License. You may obtain a copy of
% the License at
%
% http://www.apache.org/licenses/LICENSE-2.0
%
% Unless required by applicable law or agreed to in writing, software
% distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
% WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
% License for the specific language governing permissions and limitations under
% the License.

-module(monic_file_manager).
-export([init/1,
Expand Down
17 changes: 13 additions & 4 deletions src/monic_sup.erl
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
%% @author author <author@example.com>
%% @copyright YYYY author.
% Copyright 2011 Cloudant
%
% Licensed under the Apache License, Version 2.0 (the "License"); you may not
% use this file except in compliance with the License. You may obtain a copy of
% the License at
%
% http://www.apache.org/licenses/LICENSE-2.0
%
% Unless required by applicable law or agreed to in writing, software
% distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
% WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
% License for the specific language governing permissions and limitations under
% the License.

%% @doc Supervisor for the monic application.

-module(monic_sup).
-author('author <author@example.com>').

-behaviour(supervisor).

Expand Down

0 comments on commit acef7cb

Please sign in to comment.