Skip to content
This repository has been archived by the owner on Apr 10, 2020. It is now read-only.

Commit

Permalink
Fix MapExtensions docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinnara committed Mar 4, 2014
1 parent 0e0a6a6 commit c1d1f10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Microsoft.Phone.Controls.Toolkit.WP8/Maps/MapExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static class MapExtensions
/// Gets the Children collection of a map.
/// </summary>
/// <param name="element">The dependency object</param>
/// <returns>Returns <see cref="ObservableCollection&lt;DependencyObject&gt;"/></returns>
/// <returns>Returns <see cref="DependencyObjectCollection&lt;DependencyObject&gt;"/></returns>
public static DependencyObjectCollection<DependencyObject> GetChildren(Map element)
{
if (element == null)
Expand Down Expand Up @@ -72,7 +72,7 @@ public static DependencyObjectCollection<DependencyObject> GetChildren(Map eleme
/// <summary>
/// Adds a dependency object to the map at the specified location.
/// </summary>
/// <param name="childrenCollection">An <see cref="ObservableCollection&lt;DependencyObject&gt;"/> to add to.</param>
/// <param name="childrenCollection">An <see cref="DependencyObjectCollection&lt;DependencyObject&gt;"/> to add to.</param>
/// <param name="dependencyObject">The dependency object to add.</param>
/// <param name="geoCoordinate">The geographic coordinate at which to add the dependency object.</param>
public static void Add(this DependencyObjectCollection<DependencyObject> childrenCollection, DependencyObject dependencyObject, GeoCoordinate geoCoordinate)
Expand All @@ -99,7 +99,7 @@ public static void Add(this DependencyObjectCollection<DependencyObject> childre
/// <summary>
/// Adds a dependency object to the map at the specified location.
/// </summary>
/// <param name="childrenCollection">An <see cref="ObservableCollection&lt;DependencyObject&gt;"/> to add to.</param>
/// <param name="childrenCollection">An <see cref="DependencyObjectCollection&lt;DependencyObject&gt;"/> to add to.</param>
/// <param name="dependencyObject">The dependency object to add.</param>
/// <param name="geoCoordinate">The geographic coordinate at which to add the dependency object.</param>
/// <param name="positionOrigin">The position origin to use.</param>
Expand Down

0 comments on commit c1d1f10

Please sign in to comment.