@@ -435,7 +435,7 @@ dsa_create(int tranche_id)
435435 */
436436dsm_pin_segment (segment );
437437
438- /* Create a new DSA area with the controlobjet in this segment. */
438+ /* Create a new DSA area with the controlobject in this segment. */
439439area = create_internal (dsm_segment_address (segment ),
440440DSA_INITIAL_SEGMENT_SIZE ,
441441tranche_id ,
@@ -1147,7 +1147,7 @@ create_internal(void *place, size_t size,
11471147elog (ERROR ,"dsa_area space must be at least %zu, but %zu provided" ,
11481148dsa_minimum_size (),size );
11491149
1150- /* Now figure out how much space isusuable */
1150+ /* Now figure out how much space isusable */
11511151total_pages = size /FPM_PAGE_SIZE ;
11521152metadata_bytes =
11531153MAXALIGN (sizeof (dsa_area_control ))+
@@ -1672,7 +1672,7 @@ get_segment_by_index(dsa_area *area, dsa_segment_index index)
16721672 */
16731673handle = area -> control -> segment_handles [index ];
16741674
1675- /* It's anerro to try to access an unused slot. */
1675+ /* It's anerror to try to access an unused slot. */
16761676if (handle == DSM_HANDLE_INVALID )
16771677elog (ERROR ,
16781678"dsa_area could not attach to a segment that has been freed" );