Skip to content

Commit

Permalink
Doc fixes from review of DM-419.
Browse files Browse the repository at this point in the history
  • Loading branch information
TallJimbo committed Sep 5, 2014
1 parent 3375f4f commit e5f4f91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions include/lsst/afw/table/Source.h.m4
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ m4def(`DECLARE_SLOT_DEFINERS',
/**
* @brief Return the name of the field used for the $1$2 slot.
*
* @throw NotFoundError is the slot is not defined.
* @throw NotFoundError if the slot is not defined.
*
* @deprecated in favor of
* @code
Expand All @@ -78,7 +78,7 @@ m4def(`DECLARE_SLOT_DEFINERS',
}

/**
* @brief Return the true if the $1$2 slot corresponds to a valid field.
* @brief Return true if the $1$2 slot corresponds to a valid field.
*
* @deprecated in favor of get$1$2Slot().isValid().
*/
Expand Down
4 changes: 2 additions & 2 deletions include/lsst/afw/table/slots.h
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ struct SlotSuite {
* Utilities for version 0 tables and measurement algorithms that fill them.
*
* These are deprecated and should not be used by new code; they will be removed when
* the new measurement framework in meas_base is complete and the old on in meas_algorithms
* the new measurement framework in meas_base is complete and the old one in meas_algorithms
* is retired.
*/

Expand All @@ -236,7 +236,7 @@ struct Measurement {
};

/// A collection of types useful for flux measurement algorithms.
struct Flux : public Measurement<double, double> {}; //pgee temporary
struct Flux : public Measurement<double, double> {};

/// A collection of types useful for centroid measurement algorithms.
struct Centroid : public Measurement< Point<double>, Covariance< Point<float> > > {};
Expand Down

0 comments on commit e5f4f91

Please sign in to comment.