Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
emka committed Jun 20, 2011
1 parent ed10b81 commit 91f2265
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions couchapp/lists/osmxml.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/**
* This function outputs OSM XML.
* http://wiki.openstreetmap.org/wiki/XML#OSM_XML_file_format
* http://wiki.openstreetmap.org/wiki/Data_Primitives
*
* @author Mitja Kleider
*/
Expand Down
6 changes: 3 additions & 3 deletions couchapp/views/all/map.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* A simple map function mocking _all, but allows usage with lists etc.
* Simple map function mocking _all, including _id as key. Allows usage with lists, etc.
*
*/
function(doc) {
emit(doc.id, doc);
}
emit(doc._id, doc);
}

0 comments on commit 91f2265

Please sign in to comment.